home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 42
/
Amiga Format AFCD42 (Issue 126, Aug 1999).iso
/
-serious-
/
comms
/
other
/
slrn
/
slrn_src
/
macros
/
ispell.sl
< prev
next >
Wrap
Text File
|
1999-05-14
|
360b
|
21 lines
% This macro demonstrates the use of the post_filter_hook
define post_filter_hook (file)
{
variable rsp;
variable cmd;
forever
{
rsp = get_response ("NnIi",
"Select Filter? \001None, \001Ispell");
if ((rsp == 'i') or (rsp == 'I'))
cmd = "ispell -x";
else return;
() = system (Sprintf ("%s '%s'", cmd, file, 2));
}
}